home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOpus Plus
/
DOpus Plus.iso
/
Tutorial
/
C Guide
/
Simple_Module2
/
HiddenCommand.c
< prev
next >
Wrap
C/C++ Source or Header
|
1998-08-24
|
533b
|
21 lines
/*******************************************************************
HiddenCommand.c
It's a joke... :-), all what's to do is already done in the
ModuleEntry code (to set the FUNCF_PRIVATE flag). Since we
have done until now the first step, we may be a little bit lazy.
So we do only wait a few seconds before we return...
*********************************************************************/
#include "includes/Project.h"
void HiddenCommand( STRPTR args, IPCData *ipc, IPCData *main_ipc )
{
Delay( 300 );
}